home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form MsgRange
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "Message Range"
- ClientHeight = 1455
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 3690
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 1860
- Left = 1035
- LinkTopic = "Form2"
- ScaleHeight = 1455
- ScaleWidth = 3690
- Top = 1140
- Width = 3810
- Begin VB.CommandButton Cancel
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Cancel = -1 'True
- Caption = "Cancel"
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 285
- Left = 2355
- TabIndex = 5
- Top = 660
- Width = 840
- End
- Begin VB.CommandButton Ok
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "Ok"
- Default = -1 'True
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 285
- Left = 2355
- TabIndex = 4
- Top = 330
- Width = 840
- End
- Begin VB.TextBox Last
- Appearance = 0 'Flat
- Height = 285
- Left = 990
- TabIndex = 3
- Top = 690
- Width = 1170
- End
- Begin VB.TextBox First
- Appearance = 0 'Flat
- Height = 300
- Left = 1005
- TabIndex = 2
- Top = 315
- Width = 1170
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "Last:"
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 225
- Index = 1
- Left = -45
- TabIndex = 1
- Top = 750
- Width = 915
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "First:"
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 225
- Index = 0
- Left = -45
- TabIndex = 0
- Top = 360
- Width = 915
- End
- Attribute VB_Name = "MsgRange"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Cancel_Click()
- MailForm.Flag = 0
- Unload Me
- End Sub
- Private Sub First_GotFocus()
- First.SelStart = 0
- First.SelLength = Len(First.Text)
- End Sub
- Private Sub Last_GotFocus()
- Last.SelStart = 0
- Last.SelLength = Len(Last.Text)
- End Sub
- Private Sub Ok_Click()
- MailForm.Flag = 1
- Unload Me
- End Sub
-